home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 1
/
CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso
/
Aminet
/
misc
/
emu
/
BBcpuclk1_0.lha
/
BBcpuclk1.0
/
BBcpuclk.ASM
next >
Wrap
Assembly Source File
|
1995-05-19
|
426b
|
22 lines
;
; BBcpuclk.asm
;
; (C) Copyright 1995 Remi Lenoir
;
cseg segment
assume cs:cseg,ds:cseg
org 100h
start: mov al,7
out 0ech,al
in al,0edh ;read CLKTCL register
and al,9fh ;set NON TURBO divider ratio to 1
out 0edh,al ;write CLKCTL register
mov al,0
out 0f4h,al ;switch to NON TURBO mode
exit: mov al,0
mov ah,04ch
int 21h
db 'BBcpuclk (C) Copyright 1995 Remi Lenoir'
cseg ends
end start